BoundSheet<T> Constructor(IHtmlHelper)
In This Topic
Creates one
BoundSheet<T> instance.
Syntax
'Declaration
Public Function New( _
ByVal As Microsoft.AspNetCore.Mvc.Rendering.IHtmlHelper _
)
'Usage
Dim helper As Microsoft.AspNetCore.Mvc.Rendering.IHtmlHelper
Dim instance As New BoundSheet(Of T)(helper)
public BoundSheet<T>(
Microsoft.AspNetCore.Mvc.Rendering.IHtmlHelper
)
public BoundSheet<T>(
: Microsoft.AspNetCore.Mvc.Rendering.IHtmlHelper
);
public function BoundSheet<T>(
: Microsoft.AspNetCore.Mvc.Rendering.IHtmlHelper
);
public: BoundSheet<T>(
Microsoft.AspNetCore.Mvc.Rendering.IHtmlHelper*
)
public:
BoundSheet<T>(
Microsoft.AspNetCore.Mvc.Rendering.IHtmlHelper^
)
Parameters
- helper
- The HtmlHelper instance.
See Also